{% if session['theme'] == 'darkmode' %} {% extends "base_dark.html" %} {% else %} {% extends "base.html" %} {% endif %} {% block title %}IP Checker{% endblock %} {% block content %}

IP Checker




{% if session['theme'] == 'darkmode' %} Zurück {% else %} Zurück {% endif %}
{% if error %}

{{ error }}

{% endif %} {% if ip_data %}

IP-Daten

Feld Wert
IP-Adresse{{ ip_data.get('ip', 'N/A') }}
VPN{{ 'Ja' if ip_data['security'].get('vpn', False) else 'Nein' }}
Proxy{{ 'Ja' if ip_data['security'].get('proxy', False) else 'Nein' }}
Tor{{ 'Ja' if ip_data['security'].get('tor', False) else 'Nein' }}
Land{{ ip_data['location'].get('country', 'N/A') }}
Stadt{{ ip_data['location'].get('city', 'N/A') }}
ASN{{ ip_data['network'].get('autonomous_system_number', 'N/A') }}
Netzwerk{{ ip_data['network'].get('network', 'N/A') }}
{% endif %} {% if similar_cheater_ips %}

Ähnliche Cheater-IPs

{% for ip in similar_cheater_ips %} {% endfor %}
IP-Adresse Stadt ASN SteamID
{{ ip['ip'] }} {{ ip['data']['location'].get('city', 'N/A') }} {{ ip['data']['network'].get('autonomous_system_number', 'N/A') }} {{ ip.get('steam_id', 'N/A') }}
{% endif %} {% if similar_ips|selectattr('is_cheater', 'equalto', True)|list|length > 0 %}

Ähnliche Cheater-IPs

{% for ip in similar_ips %} {% if ip['is_cheater'] %} {% endif %} {% endfor %}
IP-Adresse Stadt ASN SteamID
{{ ip['ip'] }} {{ ip['data']['location'].get('city', 'N/A') }} {{ ip['data']['network'].get('autonomous_system_number', 'N/A') }} {{ ip.get('steam_id', 'N/A') }}
{% endif %}
{% endblock %}